pathlib path of current file

38

import pathlib
pathlib.Path(__file__).parent.absolute()
from pathlib import Path

BASE_DIR = Path(__file__).resolve().parent.parent
TEMPLATES_DIR = BASE_DIR.joinpath('templates')

Comments

Submit
0 Comments